 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	height: 100%;
}

@font-face{
	font-family: graphik;
	src: url('../assets/font/GraphikRegular.otf');

}

body{
	background: #F9F9F9;
	font-size: 14px;
	/*font-family: graphik;*/
	font-family: 'Open Sans', sans-serif;

}
a{
	text-decoration: none;
}

/*login*/

.main_conatiner{
	width: 100vw;
	height: 100vh;
	position: relative;
}

.child_container{
	display: block;
    border-radius: 0.4rem;
    padding: 2rem 2rem 1rem;
    width: 35vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.04);
}
.logo_down{
	text-align: center;
	color: #666;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 2.5rem;
}
.login_heading{
	font-size: 20px;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
}
.login_slogan{
	font-size: 16px;
	color: #7c7c7c;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
}
.btn_box{
	float: right;
	width: 100%;
}
.btn_submit{
	display: block;
	background: #3563A9;
	color: #fff;
	float: right;
    padding: 0.6rem 3rem;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
}
.form-control{
	line-height: 2.5!important;
    box-shadow: none!important;
    outline: none!important;
    border: none;
    border-bottom: 2px solid #0000001f;
    border-radius: 0!important;
    padding: 0.375rem 0rem;
    font-family: 'Open Sans', sans-serif;
}
.form-control:hover, .form-check-input:focus{
	box-shadow: none!important;
	outline: none!important;
	padding: 0.375rem 0rem;
	
}
input:focus::-webkit-input-placeholder {
    color: #3563A9;
}
.form-control:focus{
	padding: 0.375rem 0.75rem;
	transition: all 0.9s;
	border-bottom:2px solid #3563A9;
}
.form-control:hover
.form-check-input:checked{
	background-color: #021442;
    border-color: #021442;
}
.form-check-label{
	font-weight: 400;
	color: #777;
	font-family: 'Open Sans', sans-serif;
}
.form_logo{
	display: block;
	margin: 1.5rem auto 0.5rem;
	width: 135px;
}
.no_account {
	text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    padding: 6rem 0rem 0.6rem;
    font-weight: 400;
    color: #7c7c7c;
    font-family: 'Open Sans', sans-serif;
}
.forget_pss{
	text-align: center;
    margin-bottom: 0;
    font-size: 16px;
}
.child_container_registeration{
	border-radius: 0.4rem;
    padding: 1rem 2rem;
    border: 1px solid #ccc;
    width: 65%;
}
.child_container_registeration form .row div .form-control{
	line-height: 1.8!important;
}
::placeholder, select{
	font-size: 14px!important;
	color: #777;
	font-weight: 400;
}
::placeholder:focus{
	color: #3563A9;
	font-family: 'Open Sans', sans-serif;
}
.btn_submit:hover{
	background: #3563A9;
	border: 1px solid #3563A9;
	color: #fff;
}
.graph-heading{
	font-size: 18px;
}